home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / diverses / him / himnotes.doc < prev    next >
Encoding:
Text File  |  1988-12-01  |  522 b   |  23 lines

  1. HIMNOTES.doc
  2. 12/01/88
  3.  
  4.  
  5. For Version 1.1
  6.  
  7.  
  8. 1. All examples in the manual refer to <malloc.h>.  This is the filename
  9.    for Microsoft C.  The filename for Turbo C is <alloc.h>.
  10.  
  11. 2. The Turbo compiler is touchy about using a pointer to malloc() as the
  12.    argument to wninit() and lminit().  Since these functions need a
  13.    pointer to a routine which returns a char pointer, use this cast
  14.    when specifying malloc:
  15.  
  16.         (char *(*)())malloc
  17.  
  18.    Example:
  19.  
  20.         lminit((char *(*)())malloc,free);
  21.  
  22.  
  23.